home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Tetris / Source / NextMatrix.h < prev    next >
Text File  |  1975-04-26  |  348b  |  24 lines

  1.  
  2. #import "Minimatrix.h"
  3. #import "Piece.h"
  4.  
  5. @interface NextMatrix:Minimatrix
  6. {
  7.     id thePiece;
  8.      id showNextSwitch;
  9.     BOOL pieceVisible;
  10.     BOOL showNext;
  11. }
  12.  
  13. - initFrame:(const NXRect *)frameRect;
  14.  
  15. - drawSelf:(const NXRect *)rects :(int)rectCount;
  16.  
  17. - start:sender;
  18. - (struct pieceInfo *)pieceInfo;
  19. - end:sender;
  20. - showNext:sender;
  21. - free;
  22.  
  23. @end
  24.